home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / include / utility / utility.h
Encoding:
C/C++ Source or Header  |  1996-09-12  |  328 b   |  19 lines

  1. #ifndef UTILITY_UTILITY_H
  2. #define UTILITY_UTILITY_H
  3. #include <exec/types.h>
  4. #include <exec/libraries.h>
  5. #include <dos/dos.h>
  6.  
  7. #define UTILITYNAME    "utility.library"
  8.  
  9. struct UtilityBase
  10. {
  11.     struct Library ub_LibNode;
  12.     UBYTE ub_Language;
  13.     UBYTE ub_Reserved;
  14.     struct ExecBase *ub_SysBase;
  15.     BPTR ub_SegList;
  16. };
  17.  
  18. #endif
  19.